home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / usr / share / doc / sudoku / README < prev   
Text File  |  2005-07-24  |  2KB  |  51 lines

  1. LICENSE: This work has been placed into the Public Domain by Michael
  2. Kennett (July 2005), and may be freely used by anybody for any purpose
  3. whatsoever. No warranty, of any kind, applies to this work.
  4.  
  5. ** Sudoku Installation Notes (Unix/Minix)
  6.  
  7. As the root user, or with the appropriate permissions, type:
  8.  
  9.     $ make install
  10.  
  11. This will compile and install the sudoku program into /usr/bin,
  12. install the manpage into /usr/man/man6, and the template file
  13. into /usr/lib/sudoku. It is necessary to edit the Makefile if
  14. you want to install the program into a different location, or
  15. on some systems, to set an alternative path for the man page.
  16.  
  17. Under Minix it is recommended that /etc/termcap be edited to
  18. add 'bell' capability (see termcap(5)). This can be done by
  19. adding a record for 'bl' in the minix console entry:
  20.  
  21.     mx|minix|minix console:\
  22.         :am:xn:bs:\
  23.         :co#80:li#25:\
  24.         :bl=^G:\                       <<<< ADD THIS
  25.         :is=\E[0m:\
  26.         :cd=\E[0J:cl=\E[H\E[0J:\
  27.     [etc...]
  28.  
  29. ** Sudoku Installation Notes (Windows)
  30.  
  31. The source distribution provides Microsoft Visual Studio (v6) project
  32. files, along with a simple NMAKE makefile suitable for the Microsoft
  33. compilers. The distribution does not include makefiles for other
  34. compilers (e.g. Borland, Open Watcom, etc...), but you should have no
  35. difficulty in using these compilers.
  36.  
  37. The Microsoft Visual Studio files are contained in the VC6 subdirectory,
  38. and the workspace file is VC6\sudoku.dsw. Open the workspace, and compile
  39. the project.
  40.  
  41. Alternatively, from the command line, enter:
  42.  
  43.     > nmake /f Makefile.msc
  44.  
  45. to build the program.
  46.  
  47. Note that there is no install script for the Windows distribution, and
  48. the program is configured to search for the template file, at runtime,
  49. in the current working directory of the process.
  50.  
  51.